/* Custom CSS for the mobile bar */
.mobile-footer-bar {
    background-color: rgba(138, 52, 219, 0.7); /* Blue background color with transparency */
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0; /* Adjusted padding */
    text-align: center;
    z-index: 1000;
  }
  .mobile-footer-bar .icon {
    font-size: 20px; /* Reduced icon size */
    color: white;
    margin-bottom: 5px; /* Adjusted margin */
  }
  .mobile-footer-bar .label {
    font-size: 10px; /* Reduced label font size */
    margin-top: 2px; /* Adjusted margin */
  }
  /* Styling for video ad container */
  .video-ad-container {
    display: none; /* Initially hide the video ad container */
    position: fixed;
    bottom: 60px; /* Adjust as needed */
    right: 10px; /* Adjusted to position on the right side */
    width: 300px; /* Adjust width as needed */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }
  /* Styling for close button */
  .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 20px; /* Increased font size */
    color: #333; /* Dark color for better visibility */
  }
  .close-btn:hover {
    color: #000; /* Darker color on hover */
  }

  /* Styling for Google AdSense container */
  .adsense-container {
    display: none; /* Initially hide the ad container */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }
  .adsense-container img {
    width: 100%;
    height: auto;
  }

  /* Hide the mobile footer bar on desktop-sized screens */
  @media (min-width: 768px) {
    .mobile-footer-bar {
      display: none;
    }
  }